-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vaev-driver: Handle correctly HTML/BODY backgrounds. #34
Conversation
5973cab
to
b826fbc
Compare
b826fbc
to
805b036
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to figure out the formating too
src/web/vaev-layout/builder.cpp
Outdated
@@ -175,7 +175,7 @@ static void _buildRun(Style::Computer& c, Gc::Ref<Dom::Text> node, Box& parent) | |||
} | |||
} | |||
|
|||
parent.add({style, fontFace, std::move(prose)}); | |||
parent.add({style, fontFace, std::move(prose), Gc::Ptr<Dom::Element> {}}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use nullptr
src/web/vaev-layout/builder.cpp
Outdated
@@ -313,6 +314,7 @@ export Box build(Style::Computer& c, Gc::Ref<Dom::Document> doc) { | |||
return { | |||
style, | |||
_lookupFontface(c.fontBook, *style), | |||
Gc::Ptr<Dom::Element> {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nullptr
src/web/vaev-layout/builder.cpp
Outdated
return {style, fontFace, prose, Gc::Ptr<Dom::Element> {}}; | ||
} | ||
|
||
return {style, fontFace}; | ||
return {style, fontFace, Gc::Ptr<Dom::Element> {}}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nullptr
src/web/vaev-base/color.h
Outdated
|
||
constexpr bool operator==(ColorSpace const& other) const { | ||
return type == other.type; | ||
} | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to go
src/web/vaev-base/color.h
Outdated
|
||
bool operator==(Side const& other) const = default; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to go
src/web/vaev-base/color.h
Outdated
|
||
bool operator==(ColorMix const& other) const = default; | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to go
805b036
to
1962e74
Compare
9034707
to
e9f0290
Compare
e9f0290
to
71f9db0
Compare
No description provided.